* editfns.c (Fmessage): Don't forget to return a value when
authorJim Blandy <jimb@redhat.com>
Mon, 22 Feb 1993 14:38:43 +0000 (14:38 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 22 Feb 1993 14:38:43 +0000 (14:38 +0000)
args[0] == Qnil.

src/editfns.c

index 8c09c5554b24a1f937d229355409e2e0a934e668..e121796e1b42a915b7499768c6132dbf5ee8b643 100644 (file)
@@ -1187,7 +1187,10 @@ minibuffer contents show.")
      Lisp_Object *args;
 {
   if (NILP (args[0]))
-    message (0);
+    {
+      message (0);
+      return Qnil;
+    }
   else
     {
       register Lisp_Object val;